home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / retroland.swf / scripts / frame_1 / DoAction_3.as < prev    next >
Text File  |  2007-10-01  |  307b  |  16 lines

  1. if(fpsCounterInterval == undefined)
  2. {
  3.    fpsTicks = 0;
  4.    fpsCounterInterval = setInterval(function()
  5.    {
  6.       trace(fpsTicks);
  7.       fpsTicks = 0;
  8.    }
  9.    ,1000);
  10.    _root.createEmptyMovieClip("fpsCounterMC",99999);
  11.    fpsCounterMC.onEnterFrame = function()
  12.    {
  13.       fpsTicks++;
  14.    };
  15. }
  16.